home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 August (Alt) / CHIP 2005-08.1.iso / program / guvenlik / syslinux-3.07.exe / win32 / hello.c next >
Encoding:
C/C++ Source or Header  |  2004-12-08  |  204 b   |  14 lines

  1. /*
  2.  * Test program for C compiler; if this doesn't compile, the
  3.  * C compiler is seriously broken.
  4.  */
  5.  
  6. #include <stdlib.h>
  7. #include <stdio.h>
  8.  
  9. int main(void)
  10. {
  11.   printf("Hello, World!\n");
  12.   return 0;
  13. }
  14.